-- Table: public."PaymentResponseLog"

-- DROP TABLE public."PaymentResponseLog";

CREATE SEQUENCE "PaymentResponseLog_PaymentResponseLogId_seq";
CREATE TABLE public."PaymentResponseLog"
(
    "PaymentResponseLogId" integer NOT NULL DEFAULT nextval('"PaymentResponseLog_PaymentResponseLogId_seq"'::regclass),
    "JsonData" text COLLATE pg_catalog."default" NOT NULL,
    "IsSuccess" boolean NOT NULL DEFAULT false,
    "Exception" text COLLATE pg_catalog."default",
    "CreatedDate" timestamp(6) with time zone NOT NULL,
    CONSTRAINT "PaymentResponseLog_pkey" PRIMARY KEY ("PaymentResponseLogId")
)

TABLESPACE pg_default;

ALTER TABLE public."PaymentResponseLog"
    OWNER to postgres;